/* ================= ROOT ================= */
:root {
  --primary-color: #ffe401;
  --secondary-color: #e2c445;
  --dark-bg: #1d1d23;
  --darker-bg: #17171c;
  /* --font-main: 'Inter', sans-serif; */
  --font-main: sans-serif;
}

/* ================= GLOBAL RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ================= TOP BAR ================= */
.top-bar {
  background-color: var(--primary-color);
  color: #000;
}

.top-container {
  display: flex;
  align-items: center;
  min-height: 45px;
  font-size: 13px;
 
}

.top-container span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ================= NAVBAR ================= */
.main-navbar {
  position: absolute;
  top:0;
  width: 100%;
  z-index: 1000;
}

/* ❗ Left/right padding remove – container se hi aayega */
.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 3.5rem;
  padding-bottom: 2.5rem;
}

/* LOGO */

.nav-logo img {
  width: 150px;
  height: auto;
  display: block;
  
}

/* ================= DESKTOP MENU ================= */
.nav-menu {
  display: flex;
  gap: 25px;
}

.nav-menu a {
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: 0.3s;
}

.nav-menu a:hover {
  color: var(--primary-color);
}

/* ================= HAMBURGER ================= */
.hamburger {
  background: none;
  border: none;
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 30px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: 0.3s;
}

/* ================= RESPONSIVE ================= */

/* HIDE TOP BAR ON MOBILE */
@media (max-width: 991px) {
  .top-bar {
    display: none;
    
  }
  .nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  padding-bottom: 2rem;
}
}
@media (max-width: 576px) {
 .nav-logo img {
    width: 100px;
    /* margin-left:0.25rem; */
    margin-left: -30px;
   
  }
  .nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  padding-bottom: 2rem;
}

}

/* MOBILE VIEW */
@media (max-width: 991px) {

  .nav-logo img {
    width: 100px;
    /* margin-left:0.25rem; */
    margin-left:0;
   
  }

  .hamburger {
    display: flex;
    /* margin-right: 2rem; */
    margin-right: 0rem;
  }

  .nav-menu {
    display: none;
  }

  /* OFFCANVAS */
  .mobile-offcanvas {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: transparent;
    z-index: 9999;
    transform: translateX(-100%);
    transition: transform 0.4s ease-in-out;
  }

  .mobile-offcanvas.show {
    transform: translateX(0);
  }

  .mobile-header {
    height: 12vh;
    background: linear-gradient(135deg, var(--darker-bg), var(--dark-bg));
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 25px;
  }

  .mobile-header img {
    width: 100px;
  }

  .close-btn {
    background: none;
    border: none;
    font-size: 50px;
    cursor: pointer;
    color: #f8f3f3;
  }

  .mobile-menu {
    height: 88vh;
    background: var(--primary-color);
    list-style: none;
    padding: 20px 0;
    margin: 0;
  }

  .mobile-menu a {
    display: block;
    padding: 18px 30px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
  }

  .mobile-menu a:hover {
    background: var(--secondary-color);
    color: #fff;
    padding-left: 45px;
  }
}  







